home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / poplib.arc / popsrc.arc / DEBUG.H next >
Encoding:
C/C++ Source or Header  |  1989-03-29  |  198 b   |  10 lines

  1. #ifdef DEBUGGING
  2. #define DEBUG(x)    printf x
  3. #define ENTER(x)    printf("entering: %s\n","x")
  4. #define LEAVE(x)    printf("leaving: %s\n","x")
  5. #else
  6. #define DEBUG(x)
  7. #define ENTER(x)
  8. #define LEAVE(x)
  9. #endif
  10.